-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(blockchainAPI): adding optional chainId
parameter for the identity
#253
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
|
||
* `address` - (Optional) Ethereum address to lookup for the ENS name and avatar. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixing this, address is not an optional parameter but is required.
`GET /v1/identity/{address}?projectId={projectId}` | ||
`GET /v1/identity/{address}` | ||
|
||
* `address` - Ethereum address to lookup for the ENS name and avatar. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did overlook this, do we need to say that is a Ethereum
address and is for ENS name?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch @zoruka ! We should remove this since the address can be Solana etc. starting from this change.
* `chainId` - (Optional) CAIP-2 chain identifier to use for the address. | ||
If it's not set the Ethereum mainnet and ENS resolution is used. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clearly specifies the default. ENS resolution is unrelated
* `chainId` - (Optional) CAIP-2 chain identifier to use for the address. | |
If it's not set the Ethereum mainnet and ENS resolution is used. | |
* `chainId` - (Optional) CAIP-2 chain identifier to use for the address. Defaults to `eip155:1` |
This PR adds an optional
chainId
parameter for the/identity
address -> name resolution to support anything other than the Ethereum ENS resolution.Related to the reown-com/blockchain-api#760